home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / utimes.c,v < prev    next >
Text File  |  1991-12-10  |  3KB  |  131 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     88.08.25.14.41.12;  author brent;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.19.14.32.11;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.12.10.16.37.49;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @Re-implemented using the new Fs_SetAttr system call
  32. @
  33. text
  34. @/* 
  35.  * utimes.c --
  36.  *
  37.  *    Procedure to map from Unix utimes system call to Sprite system call.
  38.  *
  39.  * Copyright 1986 Regents of the University of California
  40.  * All rights reserved.
  41.  */
  42.  
  43. #ifndef lint
  44. static char rcsid[] = "$Header: utimes.c,v 1.1 88/06/19 14:32:11 ouster Exp $ SPRITE (Berkeley)";
  45. #endif not lint
  46.  
  47. #include "sprite.h"
  48. #include "fs.h"
  49.  
  50. #include "compatInt.h"
  51. #include <errno.h>
  52. #include <sys/time.h>
  53.  
  54.  
  55. /*
  56.  *----------------------------------------------------------------------
  57.  *
  58.  * utimes --
  59.  *
  60.  *    Procedure to map from Unix utimes system call to Sprite 
  61.  *    Fs_SetAttributes system call.
  62.  *
  63.  * Results:
  64.  *      UNIX_SUCCESS    - the call was successful.
  65.  *      UNIX_ERROR      - the call was not successful.
  66.  *                        The actual error code stored in errno.
  67.  *
  68.  * Side effects:
  69.  *    The protection of the specified file is modified.
  70.  *
  71.  *----------------------------------------------------------------------
  72.  */
  73.  
  74. int
  75. utimes(path, tvp)
  76.     char *path;
  77.     struct timeval tvp[2];
  78. {
  79.     ReturnStatus status;    /* result returned by Sprite system calls */
  80.     Fs_Attributes attributes;    /* struct containing all file attributes,
  81.                  * only access/modify times looked at. */
  82.  
  83.     attributes.accessTime.seconds = tvp[0].tv_sec;
  84.     attributes.accessTime.microseconds = tvp[0].tv_usec;
  85.     attributes.dataModifyTime.seconds = tvp[1].tv_sec;
  86.     attributes.dataModifyTime.microseconds = tvp[1].tv_usec;
  87.     status = Fs_SetAttr(path,  FS_ATTRIB_FILE, &attributes, FS_SET_TIMES);
  88.     if (status != SUCCESS) {
  89.     errno = Compat_MapCode(status);
  90.     return(UNIX_ERROR);
  91.     } else {
  92.     return(UNIX_SUCCESS);
  93.     }
  94. }
  95. @
  96.  
  97.  
  98. 1.2.1.1
  99. log
  100. @Initial branch for Sprite server.
  101. @
  102. text
  103. @d11 1
  104. a11 1
  105. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/utimes.c,v 1.2 88/08/25 14:41:12 brent Exp $ SPRITE (Berkeley)";
  106. @
  107.  
  108.  
  109. 1.1
  110. log
  111. @Initial revision
  112. @
  113. text
  114. @d11 1
  115. a11 1
  116. static char rcsid[] = "$Header: sigsetmask.c,v 1.1 86/04/17 15:21:06 douglis Exp $ SPRITE (Berkeley)";
  117. d46 3
  118. a48 2
  119.     ReturnStatus status;       /* result returned by Sprite system calls */
  120.     Fs_Attributes attributes;  /* struct containing all file attributes */
  121. a49 5
  122.     status = Fs_GetAttributes(path, FS_ATTRIB_FILE, &attributes);
  123.     if (status != SUCCESS) {
  124.     errno = Compat_MapCode(status);
  125.     return(UNIX_ERROR);
  126.     }
  127. d54 1
  128. a54 1
  129.     status = Fs_SetAttributes(path,  FS_ATTRIB_FILE, &attributes);
  130. @
  131.